home *** CD-ROM | disk | FTP | other *** search
/ Disney Interactive Software Sampler 1998 to 1999 / DISNEY99.ISO / Media / Intro.dxr / Internal_1_Movie Script.ls < prev    next >
Encoding:
Text File  |  1998-11-16  |  209 b   |  15 lines

  1. on startMovie
  2.   set the keyDownScript to "FForward"
  3. end
  4.  
  5. on stopMovie
  6.   set the keyDownScript to EMPTY
  7. end
  8.  
  9. on FForward
  10.   if the key = " " then
  11.     go("Finish")
  12.     set the keyDownScript to EMPTY
  13.   end if
  14. end
  15.